Created: 2019-08-01 Thu 16:12
;; BEGIN Capture Templates ;; I picked up this neat trick from the Venerable Sacha Chua (defvar my/org-meeting-template-planning "* %u Meeting About CFEngine Planning %^G CREATED: %U *Agenda:* - Demos - Review work in progress - Review newly registered issues - [[https://tracker.mender.io/secure/RapidBoard.jspa?rapidView=26][CFEngine Kanban board]] ** Demos ** WIP ** New Issues " "Meeting Template - Planning")
;; Configure custom capture templates (setq org-capture-templates `(;; Note the backtick here, it's required so that the defvar based tempaltes will work! ;;http://comments.gmane.org/gmane.emacs.orgmode/106890 ;; I have lot's of meetings, so lets have a submenu ("m" "Meetings" ) ("mp" "Meeting - Planning/Review" entry (file "~/org/Work/northern.tech/development-meetings.org" ) ,my/org-meeting-template-planning :clock-in t :clock-resume t :append t :empty-lines-after 1) ))
org-clock-in, org-clock-out, org-clock-goto, org-clock-report, org-clock-resolve-clocks
org-downloadorg-download-screenshot, drag and drop,camcorder
#+NAME:CFEngine-hello-world #+BEGIN_SRC cfengine3 :include-stdlib t :log-level info :exports both :run-with-main t reports: 'CFEngine says "Hello, World!"'; #+END_SRC #+RESULTS: CFEngine-hello-world : R: CFEngine says "Hello, World!"
#+BEGIN_SRC python :results output print("Python says \"Hello, World!\"") #+END_SRC #+RESULTS: : Python says "Hello, World!"
#+BEGIN_SRC sh :results output echo "$SHELL says \"Hello, World!\"" #+END_SRC #+RESULTS: : /usr/bin/zsh says "Hello, World!"
#+BEGIN_SRC sh :results output :var INPUT=CFEngine-hello-world echo "$INPUT" #+END_SRC #+RESULTS: : R: CFEngine says "Hello, World!" :
#+CAPTION: SQL in org-mode SRC block #+BEGIN_SRC sql :exports both :dir /ssh:user@remote: :engine postgresql :database cfdb SELECT firstreporttimestamp from __hosts limit 1 #+END_SRC #+RESULTS: | firstreporttimestamp | |------------------------------| | 2019-02-15 19:49:57.74915+00 |
crypt to automatically encrypt sections of a file with GPGorg-decrypt-entry–—BEGIN PGP MESSAGE–—
hQIMA/jYNcPWXvJ6ARAAygauqE6m4hK1h2LX/P43L1kXoaVyIdpge9RKFbejEDho SokDEGtdshtUatiQmcqMiTDhnL+1B6gjMMXhdG5J0VmigXghY8+NyYN9ndKfDi09 Vd68XxP36X/EKDS4oH+0CrtiWR4UojX9GW7xA6wdIRP7spR3Lc4bRNcIxbLhNr59 JDAM2u5yQE4rRhlwjbzUNF5QGrmY1UKL3gOklfGBZdpIs7EI14n24WBQJTP4cmi0 nAKY3NzvUyj4r+BF2g1Bx21lusuwPH3NXSkgjmHK4yZrGNyQXr1Xnv30pHls5Zvr j8IFAxpQ6sSw9CEI11uAhBx/CZUYSosHy36njUOsoLU8Muu0r6GruU8zDPmo47Qj q4tq3GVi/BgFds+vSMMHyom8gmTLK82WuETF/CPIkrdIIkpt9zTCRTzkeRF1U9LE 33PHKWsPji3wAjt0KrSArnRTGDI9qEJDU0rtouT1d5GIN8nzUJw8Np/GTPQ/SNR9 nyxPhevEzCCXGxBDf6cYjQpqMJuqGUmHhq8MzhuyAAXVOB5L0eirdPE+bczWNHrM xcVZr7Ofb6bJQYWy2FG0VWz28wFnhw75v9fEdPpyDAhMsn9TU/g15Shh72Hy+MGM G4X3iC5fdmnXjOz3Ig3cNIMFTyIgNL0RMUZEyoXJ4AC8KrulQnAPgxFORvHjmRzS UAF4y/iDJia45wGWIC+6J+seIRKx65ZX2gtCc/LFCGx1LEYuPqFTTkwa+Pw52DVa 9P1MogqpjoOuCKjEqXKwqGBexsLkxSgQXbDUnuNcvTaE =Lxf/ –—END PGP MESSAGE–—
ls ~/org/journal | grep -P "2019-0[345]" | head -n 5
| 2019-03-03 |
| 2019-03-06 |
| 2019-03-11 |
| 2019-03-12 |
| 2019-03-14 |
| Item | Low Value | High Value | Mean | Sum |
|---|---|---|---|---|
| Hammer | 10 | 20 | 10 | 11 |
| Axe | 20 | 25 | 30 | 13 |
| Total: | 10 | 25 | 20 | 24 |
::@ indicates the ROW (@> means last row)$ indicates the COLUMN| Item | Low Value | High Value | Mean | Sum |
|---|---|---|---|---|
| Hammer | 10 | 20 | 10 | 10 |
| Axe | 20 | 25 | 30 | 13 |
| ^Total: | 10 | 25 | 20 | 23 |
| ^ | l | h | m | s |
^ indicates field values on this line define names for the field ABOVE this rowSimply tab through the remote references
#+Name: Example refereincing remote data | | Core | | Value returned by MyDataGenerator | :=remote(MyDataGenerator,@>$0); |
| Core | |
| Value returned by MyDataGenerator | 4 |
Also you can "convert" a table. I dunno what that actually means, but it seems
to change the way you can interact with tables. Insertion point on the table, , t c.
| Android | iOS |
| Orgzly | MobileOrg |
| Organic | beorg |
| MobileOrg | |
| SyncOrg |
Created by Nick Anderson.